core: Fix checksum for symlinks walking off into uninitialized memory
authorColin Walters <walters@verbum.org>
Wed, 26 Oct 2011 22:33:33 +0000 (18:33 -0400)
committerColin Walters <walters@verbum.org>
Wed, 26 Oct 2011 22:33:33 +0000 (18:33 -0400)
src/libostree/ostree-core.c
tests/t0009-commit-symlink.sh [new file with mode: 0755]

index 1a9a76b3e149bc113d10e3c300ee5e47c5937150..d92681b8cb229852212aa1da1164c9a21d3a4a84 100644 (file)
@@ -224,13 +224,14 @@ ostree_stat_and_checksum_file (int dir_fd, const char *path,
   else if (S_ISLNK(stbuf.st_mode))
     {
       symlink_target = g_malloc (PATH_MAX);
-
-      if (readlinkat (dir_fd, basename, symlink_target, PATH_MAX) < 0)
+      
+      bytes_read = readlinkat (dir_fd, basename, symlink_target, PATH_MAX);
+      if (bytes_read < 0)
         {
           ot_util_set_error_from_errno (error, errno);
           goto out;
         }
-      g_checksum_update (content_sha256, (guint8*)symlink_target, strlen (symlink_target));
+      g_checksum_update (content_sha256, (guint8*)symlink_target, bytes_read);
     }
   else if (S_ISCHR(stbuf.st_mode) || S_ISBLK(stbuf.st_mode))
     {
diff --git a/tests/t0009-commit-symlink.sh b/tests/t0009-commit-symlink.sh
new file mode 100755 (executable)
index 0000000..47e956d
--- /dev/null
@@ -0,0 +1,35 @@
+#!/bin/bash
+#
+# Copyright (C) 2011 Colin Walters <walters@verbum.org>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# Author: Colin Walters <walters@verbum.org>
+
+set -e
+
+. libtest.sh
+
+echo "1..2"
+
+setup_test_repository2
+
+ostree checkout $ot_repo HEAD $test_tmpdir/checkout2-head
+cd $ht_files
+ln -s foo bar
+ostree commit $ot_repo -s "Add a symlink" -b "To test it" --add=bar
+echo "ok commit symlink"
+ostree fsck $ot_repo
+echo "ok fsck"